home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / communication / bbs / hydrabbsa8 / source / src.lha / test / str / test.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-08  |  289 b   |  20 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <exec/types.h>
  5.  
  6. void strCpy(char *dest,char*source)
  7. {
  8.   int loop=0;
  9.   while (dest[loop]=source[loop++]);
  10. }
  11.  
  12. void main( void )
  13. {
  14.   char *str1="Testing!";
  15.   char str2[20];
  16.  
  17.   puts(str1);
  18.   strCpy(str2,str1);
  19.   puts(str2);
  20. }